Returns true, if Left and Right do not have equal Length and Values.
var a,b: VectorInt;
begin
a := VectorInt(TIntegerArray.Create(1,1,1,1,1));
if a <> b then ERaise('a and b are not equal!');
if a <> 1 then ERaise('a does not equals 1!'); //compare to integer value
end;